home *** CD-ROM | disk | FTP | other *** search
/ Aminet 12 / Aminet 12 (1996)(GTI - Schatztruhe)[!][Jun 1996].iso / Aminet / dev / e / eiffel.lha / flc / source / ANY / readint.s < prev    next >
Encoding:
Text File  |  1996-01-20  |  339 b   |  22 lines

  1.  
  2. **
  3. ** readint
  4. **
  5. ** Copyright © 1995, Guichard Damien.
  6. **
  7.  
  8.         include dos/dos_lib.i
  9.         include globals.i
  10.  
  11. readint
  12.         move.l  (stdin,a4),d1
  13.         lea     (lastint,a4),a2
  14.         move.l  a2,d2
  15.         move.l  #4,d3
  16.         move.l  #1,d4
  17.         move.l  a0,-(sp)
  18.         DOS_CALL FRead
  19.         move.l  (sp)+,a0
  20.         rts
  21.  
  22.